We need to subtract border_width from the size we're passing to the
children hfw functions as those are added by ourselves.
Fixes the window-border-width.ui reftest.
border_width = gtk_container_get_border_width (GTK_CONTAINER (window));
+ height -= 2 * border_width;
+
if (priv->decorated &&
!priv->fullscreen)
{
border_width = gtk_container_get_border_width (GTK_CONTAINER (window));
+ width -= 2 * border_width;
+
if (priv->decorated &&
!priv->fullscreen)
{